Find the Celebrity

Suppose you are at a party with n people (labeled from 0 to n - 1) and among them, there may exist one celebrity. The definition of a celebrity is that all the other n - 1 people know him/her but he/she does not know any of them.

Now you want to find out who the celebrity is or verify that there is not one. The only thing you are allowed to do is to ask questions like: “Hi, A. Do you know B?” to get information of whether A knows B. You need to find out the celebrity (or verify there is not one) by asking as few questions as possible (in the asymptotic sense).

You are given a helper function bool knows(a, b) which tells you whether A knows B. Implement a function int findCelebrity(n), your function should minimize the number of calls to knows.

Note: There will be exactly one celebrity if he/she is in the party. Return the celebrity’s label if there is a celebrity in the party. If there is no celebrity, return -1.

Solution:

  1. /* The knows API is defined in the parent class Relation.
  2. boolean knows(int a, int b); */
  3. public class Solution extends Relation {
  4. public int findCelebrity(int n) {
  5. // base case
  6. if (n <= 0) return -1;
  7. if (n == 1) return 0;
  8. Stack<Integer> stack = new Stack<>();
  9. // put all people to the stack
  10. for (int i = 0; i < n; i++) {
  11. stack.push(i);
  12. }
  13. int a = 0, b = 0;
  14. while (stack.size() > 1) {
  15. a = stack.pop();
  16. b = stack.pop();
  17. if (knows(a, b)) {
  18. // a knows b, so a is not the celebrity, but b may be
  19. stack.push(b);
  20. } else {
  21. // a doesn't know b, so b is not the celebrity, but a may be
  22. stack.push(a);
  23. }
  24. }
  25. // double check the potiential celebrity
  26. int c = stack.pop();
  27. for (int i = 0; i < n; i++) {
  28. // c should not know anyone else
  29. if (i != c && (knows(c, i) || !knows(i, c))) {
  30. return -1;
  31. }
  32. }
  33. return c;
  34. }
  35. }